home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 151-175 / disk_171 / sozobon-c / readme.fnf < prev    next >
Text File  |  1992-05-06  |  4KB  |  117 lines

  1. This is a copy of the Sozobon C compiler, which is a freeware C
  2. compiler developed by Sozobon, Limited.  It appears to be a full
  3. K&R compiler, and reasonably portable.  This copy was downloaded
  4. from the Atari-ST listings section of BIX, and is essentially
  5. the full source for the Atari-ST version (there is currently
  6. no Amiga version).  It includes the compiler, an assembler, a
  7. linker, libraries, and various tools.  The compiler main pass
  8. and the assembler were compiled and tested on an Amiga A2000
  9. with only minimal changes, and they appear to work (to the extent
  10. that they believe they are running on an Atari-ST), so an Amiga
  11. port should be relatively easy.
  12.  
  13. All of the files have been placed into zoo archives, in the
  14. appropriate directories.  To rebuild the source tree, simply
  15. visit each directory and run "zoo x" on the archive you find
  16. there.
  17.  
  18. Below are the "announce" and "readme.src" files found in the
  19. root of the source tree.
  20.  
  21. -Fred  ><>
  22.  13-Nov-88
  23.  
  24.  
  25. ===============================  announce  ===============================
  26.  
  27.                 Announcing
  28.  
  29.               The Sozobon C Compiler
  30.  
  31.  
  32. A new freeware C compiler has been developed by Sozobon, Limited and is
  33. being distributed through bulletin board systems, networks of various
  34. kinds, and by direct mail. The package was written by Johann Ruegg, Tony
  35. Andrews, and Joe Treat and includes the following features:
  36.  
  37.   * Full K&R compiler supporting: bit fields, structure assignment,
  38.     structure parameters and return values, enumerations, and floating
  39.     point.
  40.  
  41.   * Full source code available at no additional cost.
  42.  
  43.   * Compiler includes: front-end, optimizer, assembler, and linker.
  44.  
  45.   * Code generation averages 5% to 15% better than Alcyon.
  46.  
  47.   * Uses Dale Schumacher's dLibs runtime library (version 1.2) for
  48.     runtime support.
  49.  
  50.   * Generates Alcyon-compatible object modules and libraries.
  51.  
  52.   * A complete package, including utilities like: cc, ar, size, nm, and
  53.     an enhanced version of a PD make program.
  54.  
  55.   * Includes a utility that removes local symbols from Alcyon libraries,
  56.     reducing their size by around 30%.
  57.  
  58. The entire system is being distributed as freeware. If you receive this
  59. announcement, but are unable to find the compiler, you can order it from
  60. us directly by sending $10 (checks payable to Tony Andrews) to:
  61.  
  62.         Tony Andrews
  63.         5902E Gunbarrel Ave.
  64.         Boulder, CO 80301
  65.  
  66. You'll receive one double-sided or two single-sided disks containing the
  67. compiler (source code and executables), documentation, and version 1.2
  68. of dLibs (includes source). Be sure to specify single or double-sided
  69. disks and include your full return address. The $10 charge covers shipping
  70. and handling only. The product itself is free.  You're encouraged to make
  71. copies for friends, upload it to bulletin boards, or put it in the disk
  72. library of your local user's group. Help us get the compiler distributed,
  73. so fewer people have to pay $10 for it, and we don't spend the rest of our
  74. lives copying floppies.
  75.  
  76.                     Tony Andrews
  77.                     10/22/88
  78.                     Sozobon, Limited
  79.  
  80. ==============================  readme.src  ==============================
  81.  
  82.               Sozobon C Compiler
  83.  
  84.                  Version 1.0
  85.  
  86.  
  87. The files in this archive are:
  88.  
  89. readme       This file.
  90.  
  91. announce   A product announcement summarizing the features of the Sozobon
  92.        C compiler.
  93.  
  94. hcc.arc
  95. jas.arc
  96. ld.arc
  97. libfp.arc
  98. make.arc
  99. tools.arc
  100. top.arc
  101.        Archives containing the source code for various parts of the
  102.        compiler. These should each be unpacked in a subdirectory
  103.        of the obvious name (e.g. "make.arc" into directory "make").
  104.  
  105. makefile
  106.        This is a top-level makefile that will run make recursively
  107.        in each source subdirectory.
  108.  
  109. These files comprise the source code portion of the Sozobon compiler. To
  110. use the compiler you'll also need the executable portion and a copy of
  111. the runtime library "dLibs" (version 1.2). These should be available
  112. wherever you received this file.
  113.  
  114. The compiler has been self-hosted (i.e. can compile itself) for quite a
  115. while now, so this archive and the executable distribution is all you
  116. need to be able to hack on any part of the system.
  117.